home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000453_news@columbia.edu _Mon Aug 14 15:12:44 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id PAA08082
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 14 Aug 2000 15:12:44 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA02160
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 14 Aug 2000 15:12:44 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA16703
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 14 Aug 2000 14:43:53 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Kermit using PDQ Comm
  14. Date: 14 Aug 2000 18:43:51 GMT
  15. Organization: Columbia University
  16. Message-ID: <8n9el7$g9s$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <rnglauz-1408001025550001@news.ucdavis.edu>,
  20.  <rnglauz@ucdavis.edu> wrote:
  21. : We have managed to transmit a file using PDQ Comm with the Kermit protocol
  22. : to our server.  The server is running Kermit 3.0 on a 386 at 9600 baud -
  23. : this will stay the same as it is used to receive files from the HP48.  
  24. : Now we would like to send a DOS command to tell the server to make a copy
  25. : of the file on a:  (example:  copy pb002e a:)  
  26. : Please advise any suggestions.  One alternative is to transmit the file
  27. : twice but this seems like an inefficient method compared with executing a
  28. : DOS command
  29. MS-DOS Kermit 3.0 and later (and you have 3.0; the current version is 3.15)
  30. is capable of running in server mode, and accepting commands from the client.
  31. However, I doubt that PDQ Comm knows how to send client commands to a Kermit
  32. server.
  33.  
  34. If you were using MS-DOS Kermit or Kermit 95 on the client, you would use
  35. a sequence like this:
  36.  
  37.   send pb002e
  38.   if fail stop 1 Upload failed.
  39.   remote host copy pb002e a:
  40.   if fail stop 1 Copy failed.
  41.  
  42. See the Kermit Project website for current Kermit software releases:
  43.  
  44.   http://www.columbia.edu/kermit/
  45.  
  46. - Frank